@import url('https://fonts.googleapis.com/css2?family=Bona+Nova:ital,wght@0,400;0,700;1,400&family=Exo+2:ital,wght@0,200;0,400;0,700;1,200;1,400;1,700&display=swap');

.bona-nova {
	font-family: 'Bona Nova', serif;
}
.exo-2 {
	font-family: 'Exo 2', sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

#up-arrow {
	position: fixed;
	right: 20px;
	bottom: 60px;
	width: 50px;
	height: 50px;
	background: rgb(255, 255, 255);
	border-radius: 50%;
	display: none;
}

.home {
	position: fixed;
	left: 20px;
	bottom: 20px;
	height: 60px;
	width: 60px;
}

body {
	font-size: 16px;
	font-family: 'Exo 2', sans-serif;
	font-weight: 400;
}

.container {
	width: 1100px;
	margin: 0 auto;
}

.logo-title {
	font-size: 59px;
}

.logo {
	height: 69px;
	margin-left: -20px;
}

.row {
	display: block;
}

.row:after {
	content: '';
	display: block;
	clear: both;
}

.w50 {
	float: left;
	width: 50%;
	padding: 20px;
}

.w25 {
	float: left;
	width: 25%;
	padding: 20px;
}

.w75 {
	float: left;
	width: 75%;
	padding: 20px;
}

.header {
	padding: 7px 0;
	margin-bottom: 20px;
}
.red-text {
	color: brown;
}

a.button {
	display: inline-block;
	width: calc(25% - 50px);
	background: #ffffff;
	color: #000000;
	padding: 20px 40px;
	border-radius: 20px;
	text-decoration: none;
	font-size: 18px;
	border: 2px solid #000000;
	margin: 20px;
	transition: 0.5s;
}

a.button:hover {
	background-color: black;
	color: white;
	border-color: brown;
}

.res-img {
	max-width: 100%;
	height: auto;
}

.center {
	text-align: center;
}

p {
	margin: 10px 0;
	text-align: justify;
}

.scale {
	transition: 0.5s;
}

.scale:hover {
	transform: scale(1.2);
}

.footer {
	padding: 20px 0;
}

.card-border {
	border: 2px solid #000000;
	border-radius: 20px;
	margin-bottom: 35px;
	position: relative;
}

.stars {
	position: absolute;
	right: 20px;
	bottom: 20px;
}

.button-page {
	display: inline-block;
	background: rgb(255, 255, 255);
	color: rgb(0, 0, 0);
	padding: 13px 23px;
	border-radius: 10px;
	text-decoration: none;
	border: 2px solid #000000;
	font-size: 18px;
	transition: 0.5s;
	opacity: 1;
}

.button-page:hover {
	background-color: black;
	color: white;
	border-color: brown;
}

.card-border h2 {
	margin-bottom: 20px;
}

.page-title {
	text-align: center;
}

.slider-container {
	position: relative;
	width: 600px;
	height: 405px;
	margin: 0 auto;
	overflow: hidden;
}

.slider {
	display: flex;
	transition: transform 0.5s ease-in-out;
	border: 3px solid black;
}

.slider img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 3px solid black;
}

.prev-button,
.next-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background-color: transparent;
	border: none;
	font-size: 24px;
	color: white;
}

.prev-button {
	left: 10px;
}

.next-button {
	right: 10px;
}
